@charset "utf-8";

/* 定义keyframe动画，命名为blink */
@keyframes blink{
    0% { color: red; }
    50% { color: yellow; }
    100% { color: red; }
}
/* 添加兼容性前缀 */
@-webkit-keyframes blink {
    0% { color: red; }
    50% { color: yellow; }
    100% { color: red; }
}
@-moz-keyframes blink {
    0% { color: red; }
    50% { color: yellow; }
    100% { color: red; }
}
@-ms-keyframes blink {
    0% { color: red; }
    50% { color: yellow; }
    100% { color: red; }
}
@-o-keyframes blink {
    0% { color: red; }
    50% { color: yellow; }
    100% { color: red; }
}
/* 定义statement-blink类*/
.statement-blink{
    animation: blink 1s linear infinite;
    /* 其它浏览器兼容性前缀 */
    -webkit-animation: blink 1s linear infinite;
    -moz-animation: blink 1s linear infinite;
    -ms-animation: blink 1s linear infinite;
    -o-animation: blink 1s linear infinite;
}

.shadow {
    display: none;
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 10;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0.4;
}
#has_read {
    font-size: 40px;
    width: 20px;
    height: 20px;
}

/*澄清声明css*/
.statementPop {
    position: fixed;
    width: 60%;
    max-width: 850px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 8px;
    z-index: 999;
    display: none;
}
.statementPop h3 {
    position: relative;
    padding: 20px 20px 20px 24px;
    font-size: 20px;
    color: #fff;
    background: #424b6c;
    border-radius: 8px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
.statementPop_content {
    margin: 0 24px;
    max-height: 80vh;
    overflow-y: auto;
    font-size: 16px;
    line-height: 1.5;
    color: #333333;
    border-bottom: 1px solid #dddddd;
}
.statementPop_content p{
    margin-top: 30px;
}
.statementPop_content .first_p{
    font-weight: bold;
}
.statementPop_content span{
    margin: 50px 0 30px;
    float: right;
}
.endButton {
    text-align: center;
    margin-top: 24px;
}
.endButton .has_passed {
    padding: 10px 20px;
    border-radius: 4px;
    color: #fff;
    margin-bottom: 24px;
    font-size: 16px;
    /*background: #ff532b;*/
    cursor: pointer;
    /*background: linear-gradient(to right, #e7380c 0%, #f03e11 50%, #ff532b 100%);*/
}

.statementPop h3 {
    text-align:center;
}
.statementPop .statementPop_height {
    max-height:50vh;
    overflow-y: auto;
}
.check_read {
    padding: 10px 24px 0px;
    border-top: 1px solid #dddddd;
}
.endButton .btn-disabled {
    background: darkgrey;
}
.endButton .btn-enabled {
    background: linear-gradient(to right, #e7380c 0%, #f03e11 50%, #ff532b 100%);
}

@media (max-width: 768px) {
    /*澄清声明*/
    .statementPop {
        width: 90%;
    }
    .statementPop h3 {
        padding: 0.625rem 0.625rem 0.625rem 0.75rem;
        font-size: 1rem;
        border-radius: 8px;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }
    .statementPop_content {
        margin: 0 0.75rem;
        font-size: 0.875rem;
    }
    .statementPop_content p{
        margin-top: 1rem;
    }
    .statementPop_content span{
        margin: 1.75rem 0 1rem;
    }
    .endButton {
        margin-top: 0.75rem;
    }
    .endButton .has_passed {
        border-radius: 4px;
        font-size: 0.875rem;
    }
}
